All Questions
2 questions
3votes
1answer
174views
How do you add feature to a class that was originally designed wrong in the first place? [duplicate]
I have a Surgeon class that is constantly changing class Surgeon { string name, discipline; public: Surgeon(string _name, string _discp) : name{_name}, discipline{_discp}{} void writeDir(...
0votes
3answers
344views
How to represent personality of a person in class?
Lets say I have a class Person. class Person{ Person(std::string, int); void walk(); void talk(); void eat(); private: int age; std::string() name; }; Now lets say I want ...